home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Przegladarki internetowe / Mozilla Seamonkey 1.0.5 pl / seamonkey-1.0.5.pl-PL.win32.installer.exe / VENKMAN.XPI / bin / chrome / venkman.jar / content / venkman / venkman-bpprops.xul < prev    next >
Encoding:
Extensible Markup Language  |  2004-04-18  |  5.0 KB  |  131 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!--
  4.    -
  5.    - ***** BEGIN LICENSE BLOCK *****
  6.    - Version: MPL 1.1/GPL 2.0/LGPL 2.1
  7.    -
  8.    - The contents of this file are subject to the Mozilla Public License Version
  9.    - 1.1 (the "License"); you may not use this file except in compliance with
  10.    - the License. You may obtain a copy of the License at
  11.    - http://www.mozilla.org/MPL/
  12.    -
  13.    - Software distributed under the License is distributed on an "AS IS" basis,
  14.    - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  15.    - for the specific language governing rights and limitations under the
  16.    - License.
  17.    -
  18.    - The Original Code is The JavaScript Debugger.
  19.    -
  20.    - The Initial Developer of the Original Code is
  21.    - Netscape Communications Corporation.
  22.    - Portions created by the Initial Developer are Copyright (C) 1998
  23.    - the Initial Developer. All Rights Reserved.
  24.    -
  25.    - Contributor(s):
  26.    -   Robert Ginda, <rginda@netscape.com>, original author
  27.    -
  28.    - Alternatively, the contents of this file may be used under the terms of
  29.    - either the GNU General Public License Version 2 or later (the "GPL"), or
  30.    - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  31.    - in which case the provisions of the GPL or the LGPL are applicable instead
  32.    - of those above. If you wish to allow use of your version of this file only
  33.    - under the terms of either the GPL or the LGPL, and not to allow others to
  34.    - use your version of this file under the terms of the MPL, indicate your
  35.    - decision by deleting the provisions above and replace them with the notice
  36.    - and other provisions required by the GPL or the LGPL. If you do not delete
  37.    - the provisions above, a recipient may use your version of this file under
  38.    - the terms of any one of the MPL, the GPL or the LGPL.
  39.    -
  40.    - ***** END LICENSE BLOCK ***** -->
  41.  
  42. <!DOCTYPE window SYSTEM "chrome://venkman/locale/venkman.dtd">
  43.  
  44. <?xml-stylesheet href="chrome://venkman/skin/venkman.css" type="text/css"?>
  45.  
  46. <window id="venkman-window"
  47.   xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  48.   onload="onLoad();" onunload="onUnload();"
  49.   width="500" height="480"
  50.   persist="width height screenX screenY"
  51.   windowtype="mozapp:venkman:bp-props">
  52.  
  53.   <script>
  54.     var DEBUG = true;
  55.   </script>
  56.   <script src="chrome://venkman/content/venkman-utils.js"/>
  57.   <script src="chrome://venkman/content/venkman-bpprops.js"/>
  58.  
  59.   <hbox align="center">
  60.     <label value="&BPProps.URL.label;" minwidth="50px"/>
  61.     <textbox flex="1" readonly="true" id="url-textbox"/>
  62.     <label value="&BPProps.Line.label;" minwidth="25px"/>
  63.     <textbox readonly="true" id="line-textbox" width="50px"/>
  64.   </hbox>
  65.   <hbox align="center">
  66.     <label value="&BPProps.FunctionName.label;" minwidth="50px"/>
  67.     <textbox flex="1" readonly="true" id="function-textbox" width="50px"/>
  68.     <label value="&BPProps.PC.label;" minwidth="25px"/>
  69.     <textbox readonly="true" id="pc-textbox" width="50px"/>
  70.   </hbox>
  71.  
  72.   <hbox align="center">
  73.     <checkbox id="enabled-checkbox" label="XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
  74.       oncommand="makeDirty()" flex="1"/>
  75.     <checkbox id="onetime-checkbox" label="&BPProps.OneTime.label;"
  76.       oncommand="makeDirty()" flex="1"/>
  77.     <label value="&BPProps.TriggerCount.label;"/>
  78.     <textbox id="trigger-textbox" width="50px"
  79.      oninput="makeDirty()"/>
  80.   </hbox>
  81.  
  82.   <vbox flex="1">
  83.     <groupbox flex="1">
  84.       <caption>
  85.         <checkbox flex="1" id="condition-checkbox"
  86.           oncommand="updateConditionGroup(); makeDirty()"
  87.           label="&BPProps.ConditionalCheck.label;"/>
  88.       </caption>
  89.  
  90.       <textbox readonly="true"
  91.         value="function __trigger__(__count__) {"/>
  92.       <textbox flex="1" multiline="true" id="condition-textbox"
  93.         oninput="makeDirty()" onkeypress="onConditionKeyPress(event)"/>
  94.       <textbox readonly="true" value="}"/>
  95.       
  96.       <label value="&BPProps.Then.label;"/>
  97.       <radiogroup id="result-radio" >
  98.         <radio style="margin-left: 20px;" label="&BPProps.NeverStopRadio.label;"
  99.           oncommand="makeDirty()"/>
  100.         <radio style="margin-left: 20px;" label="&BPProps.AlwaysStopRadio.label;"
  101.           oncommand="makeDirty()"/>
  102.         <radio style="margin-left: 20px;"
  103.           label="&BPProps.ConditionalBreakRadio.label;"
  104.           oncommand="makeDirty()"/>
  105.         <radio style="margin-left: 20px;"
  106.           label="&BPProps.EarlyReturnRadio.label;"
  107.           oncommand="makeDirty()"/>
  108.       </radiogroup>
  109.  
  110.       <hbox>
  111.         <checkbox id="exception-checkbox"
  112.           label="&BPProps.PassExceptionsCheck.label;"
  113.           oncommand="makeDirty()"/>
  114.         <checkbox id="log-checkbox"
  115.           label="&BPProps.LogResultCheck.label;"
  116.           oncommand="makeDirty()"/>
  117.       </hbox>
  118.     </groupbox>
  119.   </vbox>
  120.  
  121.   <hbox pack="end">
  122.     <button id="apply-button" label="&BPProps.Apply.label;"
  123.       oncommand="copyToBreakpoint();"/>
  124.     <button id="revert-button" label="&BPProps.Revert.label;"
  125.       oncommand="populateFromBreakpoint();"/>
  126.     <button id="close-button" label="&BPProps.Close.label;"
  127.       oncommand="close();"/>
  128.   </hbox>
  129.  
  130. </window>
  131.